(Abbrev Expansion): Use \s syntax in example.
authorMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 24 Jul 2003 01:54:31 +0000 (01:54 +0000)
committerMarkus Rost <rost@math.uni-bielefeld.de>
Thu, 24 Jul 2003 01:54:31 +0000 (01:54 +0000)
lispref/abbrevs.texi

index f549c38d025fd0277e42b88f7b930d2df67b6b29..e7ba0d8e8fa642cfe6c133abf5a5ca68316a538e 100644 (file)
@@ -340,7 +340,7 @@ aborts expansion if it is not confirmed.
 ;; @r{acceptable; the return value has no effect on expansion.}
 
 (defun query-if-not-space ()
-  (if (/= ?\  (preceding-char))
+  (if (/= ?\s  (preceding-char))
       (if (not (y-or-n-p "Do you want to expand this abbrev? "))
           (error "Not expanding this abbrev"))))
 @end smallexample